*, *::before, *::after {
    box-sizing: border-box;
}
body {
    display: block;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.3125rem;
    line-height: 1.6;
    
    
}


a {
    text-decoration: none;
    color: #170b0b;
}


h1, h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    margin-top: 0;
    line-height: 1.1;
    font-size: 1.25rem;
    
}
strong {
    color: #ba8016;
}
button {
    padding: 10px;
    background-color: #f0c14b;
    border: 1px solid #a88734;
    border-radius: 4px;
    color: #f4f4f4;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ddb347;
}

.send__btn{
    display: block;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 1.6rem;
    padding: 15px;
}
.more__btn {
    border: solid 2px #f7b948;
    padding: 18px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    margin-top: 30px;
    position: relative;
    cursor: pointer;
    background: transparent;
    color: #f7b948;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

/* Background fill effect */
.more__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7b948;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* Hover Effects */
.more__btn:hover {
    color: white;
}

.more__btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Click Animation */
.more__btn:active {
    transform: scale(0.98);
}

/* Focus State for accessibility */
.more__btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 185, 72, 0.3);
}


.contact__btn {
    border: solid 2px #f7b948;
    padding: 18px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 600;
    margin-top: 30px;
    
}

p {
    max-width: 35ch;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
ul {
list-style: none;

}
img { 
    max-width: 100%;
}
 .icon__img{
    margin-bottom: 1.6rem;
 }

.hero__content{
   margin: 0 auto;
   color: #ffffff;
   background-image: url("../wsm_img/blackbackground.jpg");
   padding: 3rem;
   
}
.hero__content h1 {
    font-size: 2.5rem;
}

.hero__img {
   margin-top: 2rem;
   border-radius: 20px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.img__rapper {
    text-align: center;
}

.client__img {
    display: flex;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}
.for__client{
    display: flex;
    flex-direction: row;
    justify-content:  center;
    text-align: left;
    gap: 100px;
    margin: 2rem 0;
    background-color: #f7f7f7; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}
.support__p {
    margin-bottom: 3rem;
    
}



.support__img{
    display: flex;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support__contaienr{
    display: grid;
    margin: 0 auto;
    max-width: 1000px;
    
    font-family: sans-serif;
    margin-bottom: 15px;
}
.support__content{
    margin: 10px;
    padding: 10px;
    max-width: 35ch;
}




@media screen and (min-width: 800px) {
    
     h1 {
        font-size: 2rem;
     }
    
    .hero__content {
     text-align: left;
     padding: 5rem;

    }
    .hero__content h1 {
        font-size: 4rem;
    }
    .hero__content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin: 0 auto;
        padding: 2rem;
        align-items: center;
    }
    
    
 
    
    .hero__img {
        width: 100%;
        height: auto;
      
    }
    
    .button__group {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    
   
    
    .support__contaienr{
     display: grid;
    grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
    grid-auto-rows: auto;
    gap: 40px;
    }
    
   
    .support__p{
        margin-top: 2rem;
       align-self: center;
       justify-self: center;
    }
    
}


@media screen and (min-width: 1200px){
    .for__client{  
        line-height: 2rem;
        
       
    } 
    
    .client__rapper{
        display: flex;
        justify-content: center;
        text-align: center;
        gap: 100px;
        margin: 3rem;
    }
    .client__p{
        display: flex;
        gap: 40px;
    }

}